From: Harshal Gohel Date: Thu, 3 Jul 2025 13:28:22 +0000 (+0000) Subject: realtek: rtl93xx: Do not use media register to get link status X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=2645c4afbb0935ed91d38c961037465078078064;p=openwrt%2Fopenwrt.git realtek: rtl93xx: Do not use media register to get link status The media_sts register only shows type of link, fiber/copper, and has nothing to do with the link status Signed-off-by: Harshal Gohel Signed-off-by: Sharadanand Karanjkar Link: https://github.com/openwrt/openwrt/pull/19575 Signed-off-by: Hauke Mehrtens --- diff --git a/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/dsa.c b/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/dsa.c index 425fffd065..10438298ad 100644 --- a/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/dsa.c +++ b/target/linux/realtek/files-6.12/drivers/net/dsa/rtl83xx/dsa.c @@ -653,9 +653,6 @@ static void rtl93xx_pcs_get_state(struct phylink_pcs *pcs, if (priv->family_id == RTL9300_FAMILY_ID) media = sw_r32(RTL930X_MAC_LINK_MEDIA_STS); - if (media & BIT_ULL(port)) - state->link = 1; - pr_debug("%s: link state port %d: %llx, media %llx\n", __func__, port, link & BIT_ULL(port), media);